home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / convexcp.sql < prev    next >
Text File  |  2000-05-12  |  946b  |  23 lines

  1. /* RCSVER $Id: convexcp.sql,v 1.1 1999-03-01 13:16:13-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        convexcp.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the convexcp.sql. This table contains the conversion
  9. *        exceptions that have occurred in the convert process for
  10. *        probed data.  
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE convexcp
  14. (
  15.     conversion_num    NUMBER(38)    /* Conversion num from convert */
  16.         CONSTRAINT ref1_convexcp REFERENCES convert(conversion_num),
  17.     err_type    NUMBER(38)    /* Type of conversion error */
  18.         CONSTRAINT ref2_convexcp REFERENCES converr(err_type),
  19.     rec_seq        NUMBER(38),    /* Record sequence from probe file */
  20.     det_seq        NUMBER(38),    /* Detail sequence in mstrrec */
  21.     descr        VARCHAR2(80)
  22. );
  23.